{% extends 'base.html' %} {% load static %} {% load persian %} {% block title %}{{ article.title }} - {{ site_settings.site_name|default:"خبرگزاری ایثار" }}{% endblock %} {% block content %}
{% if article.categories.exists %} {% with first_cat=article.categories.first %} {% if first_cat.icon %}{% endif %} {{ first_cat.name }} {% endwith %} {% endif %}

{{ article.title }}

{{ article.publish_time|date:"Y/m/d - H:i"|to_persian_num }} {{ article.views|to_persian_num }} بازدید {% if article.categories.exists %} {{ article.categories.first.name }} {% endif %}
{% if article.image %} {{ article.title }} {% endif %}
{{ article.body|linebreaks }}
{% if related_articles %}

اخبار مرتبط

{% for related in related_articles %}
{% if related.image %} {{ related.title }} {% else %}
{% endif %}
{% endfor %}
{% endif %} {% endblock %}